home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / tests / makefile < prev    next >
Makefile  |  1999-09-16  |  947b  |  38 lines

  1. SHELL = /bin/sh
  2.  
  3. SCIDIR=..
  4. include ../Makefile.incl
  5.  
  6. .SUFFIXES: .dia .tst $(SUFFIXES)
  7.  
  8. .tst.dia:
  9.     @$(SCIDIR)/util/scidem $(SCIDIR) $*.tst $*.dia
  10.  
  11. OBJS =  matops.dia scilab.dia macro.dia calpol.dia clause.dia \
  12.     logops.dia sparse.dia lsparse.dia lstops.dia polops.dia \
  13.     fmlelm.dia elemlib.dia \
  14.     break.dia breakpoints.dia pause.dia \
  15.     sprintf.dia sscanf.dia display.dia dmrdsp.dia \
  16.     intg.dia matnew.dia matode.dia matopt.dia matqz.dia \
  17.     matric.dia metanet.dia matimp.dia dassldasrt.dia \
  18.     bezout.dia corr.dia evans.dia flts.dia fort.dia \
  19.     colnew.dia feval.dia auto.dia pow.dia residu.dia rtitr.dia
  20.  
  21. all:: info
  22.  
  23. world: info
  24.  
  25. info:
  26.     @echo "Type \"make tests\" in tests directory"
  27.     @echo "  to test the  distribution"
  28.     @echo " SEE THE README FILE (IMPORTANT) "
  29.  
  30. tests: $(OBJS)
  31.  
  32. clean ::
  33.     $(RM) $(OBJS) examples.tst get_examples.log *.graph so_locations \
  34.     foo*
  35. distclean::
  36.     $(RM) $(OBJS) examples.tst get_examples.log *.graph so_locations \
  37.     foo*
  38.